-
Notifications
You must be signed in to change notification settings - Fork 35
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Convert triple_alpha_plus_cago to new reactions scheme #1265
Merged
zingale
merged 23 commits into
AMReX-Astro:development
from
maxpkatz:convert_triple_alpha
Jul 22, 2023
Merged
Convert triple_alpha_plus_cago to new reactions scheme #1265
zingale
merged 23 commits into
AMReX-Astro:development
from
maxpkatz:convert_triple_alpha
Jul 22, 2023
Conversation
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This reverts commit 1d26ec6.
this still only works with aprox19
…tro#1282) these include Make.Microphysics_extern but not Make.Microphysics
Here I separated get_nse_state into two separate functions, one that calculates the exponent part of the nse mass fraction (depends on chemical potentials) and the other calculates components that do not depend on chemical potentials. This way we don't have to compute unnecessary parts when we solve for chemical potentials, mu_p and mu_n during hybrid solver, which includes getting the partition function. Heres the new profile, it brings down # of calls for get_partition_functions from 900,000,000+ (from pr1274) to 200,000,000+
abort earlier if T_in < T_nse_net to avoid unnecessary computing.
This updates ECSN with the latest pynucastro, which changes the rate tables to be log10. Due to differences in the units conversion factors and the number of decimals between the existing tabular rates and the ones of the pynucastro PR AMReX-Astro#550, the existing benchmark will differ.
The goal of this change is to remove the global data from actual_network_data.cpp, which in turn allows elimination of that file. Rather than an array, this can be handled with a constexpr function emulating the array. The new function is templated to allow compile-time evaluation of the binding energy. However, not all locations in Microphysics will be readily available to switch to a compile-time evaluation, so a "legacy" interface which accepts the species index at runtime is also provided. (This requires constexpr_for to be available in the network, so it is moved to a separate utility location.)
zingale
reviewed
Jul 21, 2023
zingale
reviewed
Jul 21, 2023
zingale
approved these changes
Jul 22, 2023
5 tasks
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
This will change the rates for this network by about 1% due to a different implementation of the triple alpha and C12(a,g)O16 rates in this network compared to the aprox rates we use for the other networks.